home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-03-06 | 833 b | 32 lines | [TEXT/GEOL] |
- Item 1496001 7-Sept-89 07:46
-
- From: KEMINK1 Kemink, Joost,APL
-
- To: D2769 Comusearch, James Benson,PRT
-
- cc: MACAPP.TECH$ MACAPP Tech
-
- Sub: Re to Dialog Problems
-
- Manuel,
-
- Tabs and Returns in Modal Dialogs should work normally, have you checked
- whether your window and dialog view are enabled? Also, if you override the
- DoChoice method of your dialog view, be sure that you call INHERITED DoChoice
- whenever origView contains a view that you don't handle:
-
- PROCEDURE TYourDialog.DoChoice(origView:TView;itsChoice:INTEGER); OVERRIDE;
- BEGIN
- IF origView.fIdentifier=kViewIDThatIsHandledByMe THEN
- BEGIN
- { Handle it }
- END
- ELSE
- INHERITED DoChoice(origView,itsChoice);
- END;
-
- Hope this helps,
-
- Joost
-
-